home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 242 / Issue 242 - April 2008 - DPCS0408DVD.ISO / Software Money Savers / VirtualDub / Source / VirtualDub-1.7.7-src.7z / src / Asuka / source / makearray.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2006-11-25  |  1.9 KB  |  65 lines

  1. //    Asuka - VirtualDub Build/Post-Mortem Utility
  2. //    Copyright (C) 2005-2006 Avery Lee
  3. //
  4. //    This program is free software; you can redistribute it and/or modify
  5. //    it under the terms of the GNU General Public License as published by
  6. //    the Free Software Foundation; either version 2 of the License, or
  7. //    (at your option) any later version.
  8. //
  9. //    This program is distributed in the hope that it will be useful,
  10. //    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. //    GNU General Public License for more details.
  13. //
  14. //    You should have received a copy of the GNU General Public License
  15. //    along with this program; if not, write to the Free Software
  16. //    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. #include "stdafx.h"
  19. #include <vd2/system/vdtypes.h>
  20. #include <vd2/system/vdstl.h>
  21. #include <vd2/system/filesys.h>
  22. #include <string>
  23. #include <vector>
  24.  
  25. #include "utils.h"
  26.  
  27. void tool_makearray(const vdfastvector<const char *>& args, const vdfastvector<const char *>& switches) {
  28.     if (args.size() < 3) {
  29.         printf("usage: makearray <binary file> <.cpp output file> <symbol name>\n");
  30.         exit(5);
  31.     }
  32.  
  33.     FILE *f = fopen(args[0], "rb");
  34.     if (!f)
  35.         fail("    couldn't open: %s\n", args[0]);
  36.     fseek(f, 0, SEEK_END);
  37.     size_t l = ftell(f);
  38.     vdfastvector<char> buf(l);
  39.     fseek(f, 0, SEEK_SET);
  40.     if (!buf.empty())
  41.         fread(&buf[0], l, 1, f);
  42.     fclose(f);
  43.  
  44.     f = fopen(args[1], "w");
  45.     if (!f)
  46.         fail("    couldn't open: %s\n", args[1]);
  47.  
  48.     fprintf(f, "// Automatically generated by Asuka from \"%s.\" DO NOT EDIT!\n\n", VDFileSplitPath(args[0]));
  49.  
  50.     fprintf(f, "extern const unsigned char %s[]={\n", args[2]);
  51.  
  52.     for(size_t i=0; i<l; i += 32) {
  53.         size_t limit = i+32;
  54.         if (limit > l)
  55.             limit = l;
  56.  
  57.         for(size_t j=i; j<limit; ++j)
  58.             fprintf(f, "0x%02x,", (uint8)buf[j]);
  59.         fputc('\n', f);
  60.     }
  61.  
  62.     fprintf(f, "};\n");
  63.     fclose(f);
  64. }
  65.